home *** CD-ROM | disk | FTP | other *** search
- ###############################################################
- # Description: Playing full length of a wave file in a
- # specific format and check if it sounds proper.
- ###############################################################
-
- open ?AP2PATH?I16B22KS.WAV alias wave1 wait
-
- set wave1 bitspersample 16 wait
- status wave1 bitspersample wait
- =16
-
- set wave1 samplespersec 22050 wait
- status wave1 samplespersec wait
- =22050
-
- set wave1 channels 2 wait
- status wave1 channels wait
- =2
-
- set wave1 format tag AVC ADPCM wait
- status wave1 format tag wait
- =AVC ADPCM
-
- play wave1 wait
- @CHECK Was the sound without hissing, popping?
-
- close wave1 wait
-